SftTree/OCX 7.0

SftTree.PlusMinusPictureExpanded Property

Softel vdm, Inc.

Defines the graphic used to display an expanded item's plus/minus graphic.

Deprecated - Provided for compatibility with earlier versions only - Use Items.PlusMinusImageExpanded instead

Syntax       

Get

VB.NET

refPictureObj = object.PlusMinusPictureExpanded  As System.Drawing.ImageLanguage-specific information

VB

Set refPictureObj = object.PlusMinusPictureExpanded  As IPictureDisp

C#.NET

System.Drawing.ImageLanguage-specific information refPictureObj = object.PlusMinusPictureExpanded;

VC++

IPictureDisp* refPictureObj = object->GetPlusMinusPictureExpanded();

C

HRESULT object->get_PlusMinusPictureExpanded(IPictureDisp** refPictureObj);

Delphi

refPictureObj := object.PlusMinusPictureExpanded  : TPicture;

Put

VB.NET

object.let_PlusMinusPictureExpanded(ByVal refPictureObj As System.Drawing.ImageLanguage-specific information)

VB

object.PlusMinusPictureExpanded = refPictureObj  As IPictureDisp

C#.NET

void object.let_PlusMinusPictureExpanded(System.Drawing.ImageLanguage-specific information refPictureObj);

VC++

void object->PutPlusMinusPictureExpanded(IPictureDisp* refPictureObj);

C

HRESULT object->put_PlusMinusPictureExpanded(IPictureDisp* refPictureObj);

Delphi

procedure object._Set_PlusMinusPictureExpanded(refPictureObj : TPicture);

PutRef

VB.NET

object.PlusMinusPictureExpanded = refPictureObj  As System.Drawing.ImageLanguage-specific information

VB

Set object.PlusMinusPictureExpanded = refPictureObj  As IPictureDisp

C#.NET

System.Drawing.ImageLanguage-specific information object.PlusMinusPictureExpanded = refPictureObj;

VC++

void object->PutRefPlusMinusPictureExpanded(IPictureDisp* refPictureObj);

C

HRESULT object->putref_PlusMinusPictureExpanded(IPictureDisp* refPictureObj);

Delphi

object.PlusMinusPictureExpanded := refPictureObj  : TPicture;

object

A SftTree object.

refPictureObj

Defines the graphic used to display an expanded item's plus/minus graphic.  The refPictureObj object must represent a bitmap and cannot represent an icon or a metafile.  The top, left pixel of each graphic must contain the background color.  This color will be replaced by the actual background color when the graphic is displayed.  For information about picture properties, please visit the applicable section "Using SftTree/OCX with ...".

Comments

Deprecated - Provided for compatibility with earlier versions only - Use Items.PlusMinusImageExpanded instead

The PlusMinusPictureExpanded property defines the graphic used to display an expanded item's plus/minus graphic.

The PlusMinusPictureExpanded and PlusMinusPictureExpandedH properties are synonyms, but accept different value types (Picture object reference or Windows bitmap handle).

All items which are expanded will be displayed with this plus/minus graphic.  Individual items cannot override the plus/minus graphic.

Plus/minus graphics are not shown until the properties Items.PlusMinusImageExpandable and Items.PlusMinusImageExpanded define valid graphics.  The Items.PlusMinusImageLeaf property is optional.

All graphics used in a tree control as Items.PlusMinusImageExpandable, Items.PlusMinusImageExpanded and Items.PlusMinusImageLeaf properties at the same time must be the same size (height and width).  The dimensions of the graphics are used to calculate the minimum dimension for items, so graphics used as plus/minus graphics are never clipped vertically.  To change the plus/minus graphic size, the plus/minus graphics properties Items.PlusMinusImageExpandable, Items.PlusMinusImageExpanded and Items.PlusMinusImageLeaf must be set to the value Nothing (NULL) before assigning new plus/minus graphics.

If an item is disabled (see Item.Enabled property), the plus/minus graphic is drawn in a "grayed" fashion, if it is based on a bitmap. Other image types, like color samples, .NET image objects, etc., must be explicitly replaced with a grayed image if a different rendering of a disabled image is desired.

The PlusMinusPictureExpanded property can be set to the value Nothing (NULL).  Plus/minus graphics are then no longer displayed.

Using PutRef (see Syntax above) the control will use the reference to the Picture object.  If the Picture object is later changed, this will also affect the image used by the control.  Using Put instead causes the control to create a copy of the Picture object.  If the Picture object is later changed, this will not affect the image used by the control as it uses a copy of the object.  Because of the additional overhead and the increased resource use of Put, PutRef is the preferred method.

See Also  SftTree Object | Object Hierarchy


Feedback / comments / error reports for this topic
© 2015 - Softel vdm, Inc. - www.softelvdm.com